Arithmetic operators
An example
wEqual statements:
if (w += x = y++ * z)
u = ++w;
x = y *z;
y = y + 1;
w = w + x;
if (w != 0)
{
u = w + 1;
u = w;
};